home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / trcview.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  429 b   |  17 lines

  1. //-----------------------------------------------------------------------------
  2. #include "TrcView.h"
  3. //-----------------------------------------------------------------------------
  4. #pragma resource "*.DFM"
  5.  
  6. TTraceForm*  TraceForm;
  7. __fastcall TTraceForm::TTraceForm(TComponent* Owner) : TForm(Owner)
  8. {
  9. }
  10.  
  11.  
  12. void __fastcall TTraceForm::TraceDataKeyPress( TObject* Sender, Char& Key)
  13. {
  14.   if (Key == 0x27) Close();
  15. }
  16.  
  17.